home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / pc_board / outcomm2.zip / OUTCOMM.DOC < prev    next >
Text File  |  1992-02-14  |  2KB  |  50 lines

  1.                         OUTCOMM Documentation
  2.  
  3.  
  4.      Outcomm is a door utility.  The basic purpose of this program is to
  5. display a file to the user out the comport when a door cannot be used for
  6. some reason or another.  This may be due to you closing the door temporarily,
  7. OR another user might already be in the door (Which doesn't support a
  8. multi-node BBS).
  9.  
  10.      There are a LOT of doors that do not support Multi-Node and it is your
  11. responsibility to modify your Door Batch file so only one user is in the door
  12. at a time.  One way to modify your batch file is like this:
  13.  
  14.   CD \DOORS\TRADEWAR
  15.   if exist INUSE.TXT goto INUSE
  16.   rem Let's rename our BUSY.TXT to INUSE.TXT so other nodes somebody is in it
  17.   rename BUSY.TXT
  18.   TWADEWAR.EXE C:\PCB\PCBOARD.SYS
  19.   rem Let's rename it back to BUSY.TXT so people can access the door again.
  20.   rename INUSE.TXT BUSY.TXT
  21.   goto DONE
  22.   :INUSE
  23.   rem Let's notify the user that the door is in use.
  24.   OUTCOMM.EXE C:\PCB NO GAMEBUSY
  25.   :DONE
  26.   CD \PCB
  27.   BOARD
  28.  
  29.      If you wish to use OUTCOMM in some other area (Like your PCBTEST.BAT file),
  30. you will need to get a copy of my OUTCOMM1.ZIP file as it only requires the
  31. PCBOARD.SYS and PCBOARD.DAT (USERS.SYS is not required).
  32.  
  33.      This version of OUTCOMM requires the PCBOARD.SYS, USERS.SYS, and
  34. PCBOARD.DAT to be in the PCB directory (Which is defined by you on the command
  35. line).
  36.  
  37.      The reason why the USERS.SYS is required is so that 90% of all the PCBoard
  38. macros can be used in the text file.  These macros are then converted properly
  39. and displayed to the user.
  40.  
  41.   SETUP
  42.   -----
  43.  
  44.   1.  Be sure in your DOORS.DAT file (Use PCBSetup to Edit) that you tell it
  45.       to create a USERS.SYS file.
  46.  
  47.   2.  Modify your Door Batch file to display the file to the user (As in the
  48.       example above).
  49.  
  50.